{{ cookiecutter.project_name|upper|replace('-', '_') }}_HOST="0.0.0.0"
{{ cookiecutter.project_name|upper|replace('-', '_') }}_PORT=8000
{{ cookiecutter.project_name|upper|replace('-', '_') }}_DEBUG=True
{{ cookiecutter.project_name|upper|replace('-', '_') }}_LOG_LEVEL="info"
{{ cookiecutter.project_name|upper|replace('-', '_') }}_RELOAD=True
{{ cookiecutter.project_name|upper|replace('-', '_') }}_WORKERS=1
{% if cookiecutter.use_postgres %}
{{ cookiecutter.project_name|upper|replace('-', '_') }}_PG_HOST={{ cookiecutter.project_name }}
{{ cookiecutter.project_name|upper|replace('-', '_') }}_PG_PORT=5432
{{ cookiecutter.project_name|upper|replace('-', '_') }}_PG_USER={{ cookiecutter.project_name }}
{{ cookiecutter.project_name|upper|replace('-', '_') }}_PG_PASSWORD={{ cookiecutter.project_name }}
{{ cookiecutter.project_name|upper|replace('-', '_') }}_PG_DB={{ cookiecutter.project_name }}
{% endif %}